home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / ImageWriterLQ (alt. rdip) / OldAPIMsgJumpTable.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  1.3 KB  |  43 lines  |  [TEXT/MPS ]

  1. ;  ------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        OldAPIMsgJumpTable.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        This file contains the entry points for the old API messages which the
  8. ;        ImageWriter LQ driver overrides.  Note that the top of the jump table
  9. ;        must contain a single long word, which is used by the Printing Manager
  10. ;        to manage code segmentation at runtime.  This long word should default
  11. ;        to zero.
  12. ;
  13. ;    COPYRIGHT
  14. ;        Copyright Apple Computer, Inc. 1992-1994
  15. ;        All rights reserved. 
  16. ;
  17. ;    12/20/93 - dmh - Sync'd with the shipping 1.0b3 GX driver.
  18. ;     8/28/94 - dmh - Sync'd with the shipping 1.0.1 GX driver.
  19. ;
  20. ;--------------------------------------------------------------------------------
  21.  
  22. SD_OldAPIMsgJumpTable    PROC    EXPORT
  23.  
  24.                                 ; This long word is used for managing code segments
  25.                                 EXPORT    segReferenceCount
  26. segReferenceCount            dc.l        0            
  27.                 
  28.                                 ; Following are the old API message jump table entry points
  29.                                 
  30.                                 IMPORT    SD_PrValidate
  31.                                 JMP        SD_PrValidate
  32.                 
  33.                                 IMPORT    SD_ConvertPrintRecordTo
  34.                                 JMP        SD_ConvertPrintRecordTo
  35.                 
  36.                                 IMPORT    SD_ConvertPrintRecordFrom
  37.                                 JMP        SD_ConvertPrintRecordFrom
  38.                                 
  39.                                 IMPORT    SD_PrintRecordToJob
  40.                                 JMP        SD_PrintRecordToJob
  41.                                 
  42.                                 END
  43.